home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm3_3_2
- Caption = "3-3-2"
- ClientHeight = 2385
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 1860
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2385
- ScaleWidth = 1860
- Begin VB.PictureBox picResults
- Height = 1575
- Left = 240
- ScaleHeight = 1515
- ScaleWidth = 1275
- TabIndex = 1
- Top = 120
- Width = 1335
- End
- Begin VB.CommandButton cmdCompute
- Caption = "Compute"
- Height = 495
- Left = 240
- TabIndex = 0
- Top = 1800
- Width = 1335
- End
- Attribute VB_Name = "frm3_3_2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdCompute_Click()
- picResults.Cls
- picResults.Print 1.2 * 10 ^ 34
- picResults.Print 1.2 * 10 ^ 8
- picResults.Print 1.2 * 10 ^ 3
- picResults.Print 10 ^ -20
- picResults.Print 10 ^ -2
- End Sub
-